home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue44 / construc / SERVSOCK.DPR < prev    next >
Encoding:
Text File  |  1999-03-01  |  186 b   |  13 lines

  1. program ServSock;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {Form1};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.